home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / bmpmnu / frmabout.frm < prev    next >
Text File  |  1995-03-03  |  2KB  |  69 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00FFFFFF&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About PTAHSoft"
  6.    ClientHeight    =   3915
  7.    ClientLeft      =   1515
  8.    ClientTop       =   2310
  9.    ClientWidth     =   5670
  10.    Height          =   4320
  11.    Left            =   1455
  12.    LinkTopic       =   "Form2"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   3915
  16.    ScaleWidth      =   5670
  17.    Top             =   1965
  18.    Width           =   5790
  19.    Begin CommandButton cmdOK 
  20.       Caption         =   "Ok"
  21.       FontBold        =   -1  'True
  22.       FontItalic      =   0   'False
  23.       FontName        =   "System"
  24.       FontSize        =   9.75
  25.       FontStrikethru  =   0   'False
  26.       FontUnderline   =   0   'False
  27.       Height          =   330
  28.       Left            =   2205
  29.       TabIndex        =   1
  30.       Top             =   3360
  31.       Width           =   1065
  32.    End
  33.    Begin Image Image1 
  34.       Height          =   1080
  35.       Left            =   105
  36.       Picture         =   FRMABOUT.FRX:0000
  37.       Top             =   105
  38.       Width           =   1035
  39.    End
  40.    Begin Label txtPTAHSoftInfo 
  41.       BackColor       =   &H008080FF&
  42.       BackStyle       =   0  'Transparent
  43.       Height          =   3060
  44.       Left            =   1260
  45.       TabIndex        =   0
  46.       Top             =   105
  47.       Width           =   4215
  48.    End
  49. End
  50. Option Explicit
  51.  
  52. Sub cmdOK_Click ()
  53.     Unload frmAbout
  54. End Sub
  55.  
  56. Sub Form_Load ()
  57.     
  58.     Dim NL As String
  59.     NL = Chr$(13)
  60.  
  61.     txtPTAHSoftInfo = "PTAHSoft is a joung swiss software compagny. Our activities are especially the development of business software and the entreprise network engineering." & NL
  62.     txtPTAHSoftInfo = txtPTAHSoftInfo & NL
  63.     txtPTAHSoftInfo = txtPTAHSoftInfo & "Since we are based in Switzerland we have to deal with many languages (french, german and italian) so we had to develop a tool to simplify the process of translating and to allows a dynamic change of the language by the user at runtime." & NL
  64.     txtPTAHSoftInfo = txtPTAHSoftInfo & NL
  65.     txtPTAHSoftInfo = txtPTAHSoftInfo & "If you are intested in such a tool, you can found it on CompuServe in the Visual Basic Forum (GO MSBASIC)."
  66.  
  67. End Sub
  68.  
  69.